home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / MODARRAY.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  150 b   |  10 lines

  1. // array.lib function mod_array()
  2.  
  3. void mod_array(int array[],int mod,int size)
  4. {
  5.     int j;
  6.  
  7.     for (j=0;j<=size-1;j++) {
  8.         array[j] *= mod;
  9.     }
  10. }